Kurz nochmal:
Die Notice erhalte ich weiterhin:
Notice: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded in D:\wamp\apache2\htdocs\xxx\includes\functions.php on line 112
Ich habe das hier nun erweitert:
PHP-Code:
    $opts = array('http' => array(
        
"method"  => "POST",
        
"content" => $postdata,
    )); 
Die Notice verschwindet mit:
PHP-Code:
    $opts = array('http' => array(
        
"method"  => "POST",
        
'header'  => "Connection: close\r\n" .
                     
"Content-type: application/x-www-form-urlencoded\r\n" .
                     
"Content-Length: " strlen($postdata) . "\r\n",
        
"content" => $postdata,
    )); 
Ob das nun so weit ok ist, kann ich nicht sagen. Beim Crypten gibt es keine Probleme.

LG